Now the only values which should be assigned to this variable are the enumerated values: Monday, Tuesday, etc.
today = Tuesday;
today = 1; /* discouraged */
Although the enumerated values are internally represented as integers, the second assignment above defeats the purpose of the enum type. However, it is occasionally useful to mix enum variables and integers in expressions.